| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import { OnInit } from '@angular/core'; |
||
| 20 | |||
| 21 | @Component({ |
||
| 22 | selector: 'card-pokemon-header', |
||
| 23 | templateUrl: './card-pokemon-header.component.pug', |
||
| 24 | styleUrls: ['./card-pokemon-header.component.scss'], |
||
| 25 | }) |
||
| 26 | export class CardPokemonHeader implements OnInit { |
||
| 27 | |||
| 28 | constructor() { } |
||
| 29 | |||
| 30 | ngOnInit() { |
||
| 31 | |||
| 32 | } |
||
| 33 | |||
| 34 | @Input() |
||
| 35 | public entry: any = new PokemonParty(); |
||
| 36 | |||
| 37 | @Input() |
||
| 38 | public disabled: boolean = false; |
||
| 39 | } |
||
| 40 |